Neco Unit

SKU:U163

Description

The Neco Unit is a unique RGB light board unit that features an adorable cat ear shape. It is designed with precision and comprises 35 WS2812C-2020 RGB lamp beads, providing vibrant and customizable lighting effects.

With two 4-pin grove ports, this unit seamlessly connects to the M5Stack host, allowing for easy integration and expansion of additional units. The Neco Unit offers endless possibilities for creating mesmerizing lighting setups and captivating visual displays.

Enhancing user interaction, the unit is equipped with a button that enables users to interact with the host and effortlessly switch between various lighting effects. Whether it's creating an inviting ambiance for home decoration, setting the mood for a lively party atmosphere, or enhancing stage performances, the Neco Unit is perfect for a wide range of scenes and occasions.

Features

  • WS2812C-2020 RGB lamp bead
  • HY2.0-4P
  • BUTTON
  • Compatible with multi-platform development:
    • UIFlow
    • Arduino

Includes

  • 2 × Neco Unit
  • 2 × grove cable(20cm\100cm)
  • 2 × plastic-coated iron wire

Applications

  • Home Decoration
  • Party atmosphere
  • Stage performances

Specification

Resources Parameters
RGB lamp bead WS2812C-2020
Consumes current 5mA(each RGB lamp bead)
Brightness level 256 levels of brightness display
Connection method Serial cascade interface
Operating temperature 0-85°C
Number of colors 16777216 colors
Product Size 41*46*1mm
Package Size 95*65*25mm
Product Weight 9.2g
Package Weight 34.7g

CoreS3 (K128)

CORE2 (K010)

BASIC-V27 (K001-V27)

M5StickC PLUS (K016-P)

AtomS3 (C123)

StampS3 (S007)

Schematic

schematics

Module Size

module size

Examples

Arduino

#include <Adafruit_NeoPixel.h>
#define PIN        2 // M5AtomS3
#define NUMPIXELS 70 
Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
#define DELAYVAL 100

void setup() {
pixels.setBrightness(20);
  pixels.begin(); 
}

void loop() {
  pixels.clear();
  for(int i=0; i<NUMPIXELS; i++) { 
    pixels.setPixelColor(i, pixels.Color(244, 24, 208));
  }
  pixels.show();
}

UIFlow

UIFlow Blocks

  • Set single led color
image
  • Set single led color
image
  • Set single led in random color
image
  • Set multiple led colors
image
  • Set multiple led colors
image
  • Set multiple led in one random color
image
  • Set multiple led in random color
image
  • Set all led color
image
  • Set all led color
image
  • Set all led in one random color
image
  • Set all led in random color
image
  • Set brightness
image
  • Button callback
image
  • Obtain button status
image